home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
OS2
/
COM2210.ARJ
/
DEINSTL.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1992-08-12
|
919b
|
37 lines
@echo off
rem ****************************************************
rem * Simple DE-Installation utility for beta drivers *
rem ****************************************************
if "%1"=="" goto ERROR1
if not exist %1\os2\com.sys goto ERROR2
:DOIT
rename %1\os2\com.sys *.892
rename %1\os2\mode.com *.892
rename %1\os2\mdos\vcom.sys *.892
rename %1\os2\mdos\winos2\system\comm.drv *.892
rename %1\os2\com.392 *.sys
rename %1\os2\mode.392 *.com
rename %1\os2\mdos\vcom.392 *.sys
rename %1\os2\mdos\winos2\system\comm.392 *.drv
goto DONE
:ERROR1
echo **** YOU MUST SUPPLY THE OS/2 DRIVE (I.E. C:) ****
goto DONE
:ERROR2
if %2==99 goto DOIT
echo **** COM.SYS not found...Did you supply the correct Drive? ****
echo **** If you wish to Override, execute DEINSTL x: 99 where ****
echo **** x: is the correct drive letter ****
goto DONE
:DONE
echo on